Install
To start, go to the visual studio website and download VS Community 2015. It's completely free, but limited to personal use.
![](00.png)
Open the installer, and you should see a screen like this.
![](01.png)
Under custom install, check Visual C++. You can install other components if you wish.
![](02.png)
Creating a Project
Once the install is finished, create a new project:
![](03.png)
Choose console application and name your project:
![](04.png)
You should get this window:
![](05.png)
Select empty project:
![](06.png)
Your project should now be created.
Adding Files
To add a file:
![](07.png)
Select C++ file and enter the file name:
![](08.png)
Write a hello world program:
![](09.png)
You are now ready to build your project.
Build
Hit F7 or select build:
![](10.png)
Hit F5 or select start debugging:
![](11.png)
Your program should run:
![](12.png)